home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pm65sdk / sourcecode / includes / cicolormanagement.h < prev    next >
C/C++ Source or Header  |  1996-11-18  |  820b  |  29 lines

  1. /**[f******************************************************************
  2.  *    CIClrMgt.h -- CIColorManagement Interface definition
  3.  *
  4.  *    Copyright (c) 1996 Adobe Systems, Inc. All Rights Reserved
  5.  *
  6.  *    
  7.  * ABSTRACT:  
  8.  *
  9.  * USAGE: 
  10.  *
  11.  *
  12.  *
  13.  **f]******************************************************************/ 
  14.  
  15. #ifndef __CICLRMGT_H
  16. #define __CICLRMGT_H
  17. #include "pmtypes.h"
  18.  
  19. class CIColorManagement : public CIInterface {
  20. public:
  21.     // get all profiles associated with current pub
  22.     // Note: Caller is responsible for freeing the handle if this method is successful,
  23.     // via FreeHandle method
  24.     virtual PMXErr    GetAllSourceProfiles ( PMHandle *phProfileNames, unsigned short *pNameCnt, unsigned short *pSizeEach) = 0;
  25.     virtual void    FreeHandle ( PMHandle aHandle) = 0;
  26. };
  27.  
  28. #endif // __CICLRMGT_H
  29.